home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / stdio / fsetpos.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  116 b   |  10 lines

  1. #include <stdio.h>
  2.  
  3. #undef fsetpos
  4.  
  5. int fsetpos(FILE *f,const fpos_t *ptr)
  6. {
  7.     return(fseek(f,*ptr,SEEK_SET));
  8. }
  9.  
  10.